github.com/refraction-networking/utls.aead.Open (method)

9 uses

	github.com/refraction-networking/utls (current package)
		cipher_suites.go#L474: 	return f.aead.Open(out, f.nonce[:], ciphertext, additionalData)
		cipher_suites.go#L504: 	result, err := f.aead.Open(out, f.nonceMask[:], ciphertext, additionalData)
		conn.go#L384: 			plaintext, err = c.Open(payload[:0], nonce, payload, additionalData)

	github.com/refraction-networking/utls/internal/hpke
		hpke.go#L282: 	plaintext, err := r.aead.Open(nil, r.nextNonce(), ciphertext, aad)

	crypto/cipher
		cipher.go#L97: 	Open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error)

	crypto/hpke
		hpke.go#L213: 	plaintext, err := r.aead.Open(nil, r.nextNonce(), ciphertext, aad)

	crypto/tls
		cipher_suites.go#L479: 	return f.aead.Open(out, f.nonce[:], ciphertext, additionalData)
		cipher_suites.go#L509: 	result, err := f.aead.Open(out, f.nonceMask[:], ciphertext, additionalData)
		conn.go#L380: 			plaintext, err = c.Open(payload[:0], nonce, payload, additionalData)